cody - HTMLify profile

cody
4270 Files
633414 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/105 - Speech Recognitation
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
html{
font-family: "Montserrat";
padding: 0;
margin: 0;
box-sizing: border-box;
}
html{
font-family: "Montserrat";
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech~Recog🎙</title>
<link rel="stylesheet" href="style.css">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech~Recog🎙</title>
<link rel="stylesheet" href="style.css">
# Speech Recognition using JS :
---
## Describtion :
> It's a Speech Recognition site which will take permission from user to acess the microphone , and whatever user will say that will be written into a different Div Section .
---
## Tech stack used:
HTML5, CSS3, JavaScript
---
## Describtion :
> It's a Speech Recognition site which will take permission from user to acess the microphone , and whatever user will say that will be written into a different Div Section .
---
## Tech stack used:
HTML5, CSS3, JavaScript
const texts= document.querySelector(".texts");
window.SpeechRecognition= window.SpeechRecognition || window.webkitSpeechRecognition;
const recognition=new SpeechRecognition();
recognition.interimResults=true;
let p=document.createElement("p");
recognition.addEventListener("result", (e)=>{
window.SpeechRecognition= window.SpeechRecognition || window.webkitSpeechRecognition;
const recognition=new SpeechRecognition();
recognition.interimResults=true;
let p=document.createElement("p");
recognition.addEventListener("result", (e)=>{